home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / e / capus2.lha / capus2 / UserStartup / Sources / PModules.Lha / PModules / epp / skipToChar.e < prev    next >
Encoding:
Text File  |  1994-03-22  |  296 b   |  16 lines

  1. OPT TURBO
  2.  
  3. PROC skipToChar (char, theString, pos)
  4.   DEF length
  5.  
  6.   /* Finds the specified character in theString and returns its position. */
  7.  
  8.   length := StrLen (theString)
  9.   WHILE pos < length
  10.     IF theString [pos] = char THEN RETURN pos
  11.     INC pos
  12.   ENDWHILE
  13. ENDPROC  pos
  14.   /* skipToChar */
  15.  
  16.